home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the 3D Game Programming Gurus / gurus.iso / DirectX / dx9sdkcp.exe / SDK (C++) / Bin / DXUtils / Visual Studio 6.0 Wizards / Source Code / Cstm3Dlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-11-12  |  1.4 KB  |  57 lines

  1. #if !defined(AFX_CSTM3DLG_H__17962FCC_B584_42E0_ABA0_41D88E0107A6__INCLUDED_)
  2. #define AFX_CSTM3DLG_H__17962FCC_B584_42E0_ABA0_41D88E0107A6__INCLUDED_
  3.  
  4. // cstm3dlg.h : header file
  5. //
  6. #include "chooser.h"
  7.  
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CCustom3Dlg dialog
  10.  
  11. class CCustom3Dlg : public CAppWizStepDlg
  12. {
  13. // Construction
  14. public:
  15.     CCustom3Dlg( CDialogChooser* pChooser );
  16.     virtual BOOL OnDismiss();
  17.     void UpdateInfo();
  18.     void RemoveAllKeys();
  19.  
  20.     CDialogChooser* m_pChooser;
  21.     BOOL m_bDlgInited;
  22.  
  23.     BOOL m_bActionmapper;
  24.     BOOL m_bKeyboard;
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CCustom3Dlg)
  28.     enum { IDD = IDD_CUSTOM3 };
  29.     CStatic    m_Background;
  30.     CStatic    m_Preview;
  31.     //}}AFX_DATA
  32.  
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CCustom3Dlg)
  37.     protected:
  38.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CCustom3Dlg)
  45.     afx_msg void OnKeyboard();
  46.     afx_msg void OnActionmapper();
  47.     virtual BOOL OnInitDialog();
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52.  
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55.  
  56. #endif // !defined(AFX_CSTM3DLG_H__17962FCC_B584_42E0_ABA0_41D88E0107A6__INCLUDED_)
  57.